home *** CD-ROM | disk | FTP | other *** search
- ;*************************************************************************
- ;* HST.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC. *
- ;* *
- ;* An ASPECT script file for initializing the U.S. ROBOTICS COURIER HST *
- ;* modem for proper use with PROCOMM PLUS. *
- ;* *
- ;*************************************************************************
-
- CLEAR
- CUROFF
- BOX 0 0 9 58 14
- ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
- ATSAY 3 2 14 "U.S. ROBOTICS COURIER HST modem in all its operational"
- ATSAY 4 2 14 "modes, but the initial setup differs from the setup for"
- ATSAY 5 2 14 "ordinary non-error-correcting modems."
- ATSAY 7 2 14 " <press ENTER to continue>"
- WAIT1:
- IF NOT HITKEY
- GOTO WAIT1
- ENDIF
- CLEAR
- BOX 0 0 17 59 14
- ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
- ATSAY 3 2 14 "rate is fixed at 19200 (thus your status line will"
- ATSAY 4 2 14 "*always* read 19200) and the modem itself adjusts to"
- ATSAY 5 2 14 "the actual speed of the connection."
- ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
- ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
- ATSAY 9 2 14 "correcting features. You only need to run it one time,"
- ATSAY 10 2 14 "since it tells the modem to write these settings to"
- ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
- ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
- ATSAY 13 2 14 "as you run this file."
- ATSAY 15 2 14 " <press ENTER to continue>"
- WAIT2:
- IF NOT HITKEY
- GOTO WAIT2
- ENDIF
- CLEAR
- BOX 0 0 10 69 14
- ATSAY 2 2 14 "The COURIER HST requires some hardware setup before it can be used"
- ATSAY 3 2 14 "effectively with PROCOMM PLUS. The modem's bank of ten dipswitches"
- ATSAY 4 2 14 "should be set as follows:"
- ATSAY 6 2 14 "1)UP 2)UP 3)DOWN 4)UP 5)DOWN 6)UP 7)UP 8)DOWN 9)UP 10)UP"
- ATSAY 8 2 14 " <press ENTER to continue>"
- WAIT3:
- IF NOT HITKEY
- GOTO WAIT3
- ENDIF
- CLEAR
- SOUND 440 50
- BOX 0 0 4 56 14
- ATSAY 2 2 14 "COURIER HST modem initialization... WORKING..."
- SET BAUDRATE 19200 ;Set up comm line
- SET PARITY NONE
- SET DATABITS 8
- SET STOPBITS 1
- SET DISPLAY OFF
- SET TXPACE 100
- TRANSMIT "AT^M" ;Get modem's attention
- PAUSE 2
- TRANSMIT "ATZ^M" ;Resets non-volatile mem
- PAUSE 1
- TRANSMIT "AT&F^M" ;Get factory defaults
- PAUSE 1
- TRANSMIT "AT X7^M" ;Result codes on
- PAUSE 1
- TRANSMIT "AT &B1^M" ;Fix DTE/DCE baud rate
- PAUSE 1
- TRANSMIT "AT &H1^M" ;Hardware flow control
- PAUSE 1
- TRANSMIT "AT &R2^M" ;RTS
- PAUSE 1
- TRANSMIT "AT S7=60^M" ;CD timeout
- PAUSE 1
- TRANSMIT "AT S11=55^M" ;Speed up dialing
- PAUSE 1
- TRANSMIT "AT&W^M" ;Write settings to NRAM
- SET TXPACE 0
- CLEAR
- SET DISPLAY ON
- SOUND 440 50
- BOX 0 0 16 58 14
- ATSAY 2 2 14 "COURIER HST modem initialization - COMPLETED!"
- ATSAY 4 2 14 "Your HST modem will now power up with the proper"
- ATSAY 5 2 14 "defaults for PROCOMM PLUS. You should now use the"
- ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
- ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
- ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
- ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
- ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
- ATSAY 11 2 14 "should be should be set to 19200 baud, as well as your"
- ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
- ATSAY 13 2 14 "One last thing: your CONNECT MESSAGES in MODEM OPTIONS"
- ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)."
- CURON
- LOCATE 17 0
-